Conversation
- After pip installing, only the main fad folder was being installed and not everything else in the other subfolders. This fix in pyproject.toml should do the trick.
geography updates - new geography function to load in species data from a specific csv file format - - stores the polished species data in a dataframe - better way to write out the formatting of a soil file - geopandas has two functions, unary_union and union_all, that work better or worse for different versions plot2d updates - more detailed and organized docstrings - ability to plot seabed slope (based all on bathymetry data) - ability to plot species data - - plots circles with radius and transparency as a function of the date of record and location accuracy - - creates a separate figure for the legend - new inputs for x and y lim if necessary, or automatic zoom to boundary with a default buffer - the main legend is now plotted with the number of columns in the legend based on the figure width - - I was getting too many legend entries cut off, so hopefully this solves this plot3d - new updates to depth_vmin and _vmax in 3d, similar implementation as plot2d project - simple setter function to load in species data (and to stay consistent with other seabed loading functions) - functions to calculate the slope of the seabed based on bathymetry - LinearSystem quick helper input for the rounding condition in null_space
- required entering in the repo location on PyPI itself
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Purpose
Minor patch fix to go to v1.0.1 to allow all files and functions to work when pip installing. There was a missing "*" in pyproject.toml that prevented files from fad subfolders from being installed.
This PR also includes updates to the plotting and visualization including new geography functions for species data and seabed slopes.
Type of change